home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 47
/
Amiga Format AFCD47 (Issue 131, Xmas 1999).iso
/
-serious-
/
misc
/
fiasco_2.22
/
arexx
/
unlockgui.frx
< prev
next >
Wrap
Text File
|
1999-10-17
|
517b
|
35 lines
/* UnlockGUI.frx
* Script to unlock the GUI of Fiasco, if other scripts forgot it
* Copyright © 1995-1997 Nils Bandener
* $VER: UnlockGUI.frx 6.3 (6.10.97)
*/
/*
* Fiasco will complain once, if ARexx-Debug is activated.
*/
/*
* Find Fiasco port
*/
ports = show("Ports")
do i = 1 to words(ports)
if abbrev(word(ports, i), "FIASCO.") then
do
Address Value word(ports, i)
do forever
UnlockGUI
if rc ~= 0 then break
end
break
end
end